From 2acf5f8966a40c1c9a97680c8dc263ee3f1ad3d1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 2 Jul 2025 00:45:49 +0000 Subject: (대표님/최겸) 20250702 변경사항 업데이트 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/page.tsx | 158 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 app/[lng]/page.tsx (limited to 'app/[lng]/page.tsx') diff --git a/app/[lng]/page.tsx b/app/[lng]/page.tsx new file mode 100644 index 00000000..2ee83857 --- /dev/null +++ b/app/[lng]/page.tsx @@ -0,0 +1,158 @@ +import React from 'react'; +import Link from 'next/link'; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; +import { Button } from '@/components/ui/button'; +import { Badge } from '@/components/ui/badge'; +import { ShoppingCart, Users, Settings, ArrowRight, Building2 } from 'lucide-react'; + +export default function LandingPage() { + const portals = [ + { + id: 'sales', + title: '기술영업포탈', + description: '기술 영업 단계에서의 RFQ를 관리할 수 있는 통합 플랫폼', + icon: Users, + color: 'from-emerald-500 to-teal-500', + href: '/sales', + features: ['벤더 관리', '기술 영업 RFQ'] + }, + { + id: 'purchase', + title: '구매포탈', + description: '협력업체에서부터 마지막 발주까지 원스톱 구매 솔루션', + icon: ShoppingCart, + color: 'from-blue-500 to-cyan-500', + href: '/procurement', + features: ['협력업체 관리', '구매관리'] + }, + + { + id: 'design', + title: '설계포탈', + description: '벤더가 플랫폼을 통해 데이터와 문서를 제출할 수 있게 하고 TBE를 처리할 수 있는 플랫폼', + icon: Settings, + color: 'from-purple-500 to-pink-500', + href: '/engineering', + features: ['설계 기준정보관리', 'TBE'] + } + ]; + + + + return ( +
+ {/* Header */} +
+
+
+
+ +

+ enterprise Vendor Co-work Platform +

+
+

+ 통합된 비즈니스 솔루션으로 구매부터 설계까지, +
모든 업무 프로세스를 하나의 플랫폼에서 관리하세요 +

+ + Enterprise Ready + +
+
+ + {/* Main Portal Selection */} +
+
+

+ 포털을 선택하세요 +

+

+ 각 포털은 특화된 기능과 도구를 제공하여 업무 효율성을 극대화합니다 +

+
+ +
+ {portals.map((portal) => { + const Icon = portal.icon; + return ( + + +
+ + +
+ +
+ + {portal.title} + + + {portal.description} + +
+ + +
+

주요 기능

+
+ {portal.features.map((feature, idx) => ( +
+
+ {feature} +
+ ))} +
+
+ + +
+
+ + ); + })} +
+ + {/* Additional Info Section */} +
+
+

+ 모든 포털이 연동됩니다 +

+

+ 구매, 영업, 설계 포털 간의 데이터가 실시간으로 동기화되어 + 효율적인 업무 협업이 가능합니다 +

+
+ 실시간 동기화 + 통합 대시보드 + 권한 관리 + 보안 인증 +
+
+
+
+ + {/* Footer */} + +
+ ); +} \ No newline at end of file -- cgit v1.2.3